home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / ed3demo.zip / ED.ZIP / PRECDNCE.ED_ / PRECDNCE.ED
Text File  |  1991-12-30  |  1KB  |  25 lines

  1.  
  2. Precedence of C Operators
  3. =========================
  4.  
  5.     Operator                               Associativity
  6.     --------                               -------------
  7.      () [] -> .                             left to right
  8.      ! ~ ++ -- - (type) * & sizeof          right to left
  9.      *  /  %                                left to right
  10.      +  -                                   left to right
  11.      << >>                                  left to right
  12.      <  <=  >  >=                           left to right
  13.      ==  !=                                 left to right
  14.      &                                      left to right
  15.      ^                                      left to right
  16.      |                                      left to right
  17.      &&                                     left to right
  18.      ||                                     left to right
  19.      ?:                                     right to left
  20.      =  +=  -=  etc.                        right to left
  21.      ,  (K%R, Chapter 3)                    left to right
  22.  
  23.  
  24.  
  25.